CASE "!embed":
            #DiscordChannel to receive this embed.
            $Channel     = "";
            
            #Set Title/Description and color of the discord embed
                $Title         = "LFSLapper Embed Title";
                $Desc          = "Embed Description";
                
            #Prefix must contain '0x' Followed by 6 chars 0-9 and A-F
                $Color         = "0xFF0000"; #RED

            #Field Values
            ## Use %nf% to create a new field. (Add %nf% to $FieldValue and $FieldInline aswell) ##
                $FieldTitle = 
                     "Field_01 Title"
                    ."%nf%Field_02 Title"
                    ."%nf%Field_03 Title"
                    ."%nf%Field_04 Title";
                $FieldValue = 
                    "*Field_01 Value*\n*Field_01 Value*"
                   ."%nf%Field_02 Value"
                   ."%nf%```New BlockLine_01\nNew BlockLine_02\nNew BlockLine_03\nNew BlockLine_04\nNew BlockLine_05\nNew BlockLine_06\nNew BlockLine_07```"
                   ."%nf%**Field_04 Value**\n**Field_04 Value**\n**Field_04 Value**\n**Field_04 Value**";
                   
                $FieldInline = "True%nf%True%nf%False%nf%False"; 
            
            #Use %nf% to add a footer image URL !! Not an local(pc) image. 
                $Footer = "LFSLapper Footer: ".GetLapperVar("ShortTime")." %nf% https://velocitymsports.com/home/vmlogo.png ";
                
            #Small Image URL on the right side of the Embed box.
                $ThumbnailUrl = "https://velocitymsports.com/home/vmlogo.png";
            
            #The Entire EmbedBox will fit to the same size as the ImageUrl. 
                $ImageUrl = "";
            
            #Function to send Discord Embed 
            SendDiscordEmbed($Channel,$Title,$Desc,$Color,$FieldTitle,$FieldValue,$FieldInline,$Footer,$ThumbnailUrl,$ImageUrl);
        BREAK;
?>